home *** CD-ROM | disk | FTP | other *** search
-
- {*******************************************************}
- { }
- { Delphi Visual Component Library }
- { }
- { Copyright (c) 1995,97 Borland International }
- { }
- {*******************************************************}
-
- unit ExtDlgs;
-
- {$R-}
-
- interface
-
- uses Messages, Windows, SysUtils, Classes, Controls, StdCtrls, Graphics,
- ExtCtrls, Buttons, Dialogs;
-
- type
-
- { TOpenPictureDialog }
-
- TOpenPictureDialog = class(TOpenDialog)
- protected
- procedure DoClose; override;
- procedure DoSelectionChange; override;
- procedure DoShow; override;
- public
- constructor Create(AOwner: TComponent); override;
- destructor Destroy; override;
- function Execute: Boolean; override;
- end;
-
- { TSavePictureDialog }
-
- TSavePictureDialog = class(TOpenPictureDialog)
- function Execute: Boolean; override;
- end;
-
- implementation
-